@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  /* 0.1 - Default Background Colors */
  --main-bg-color: #333333;
  --main1-bg-color:#191919;
  --accent-bg-color: #0B1D07;
  --accent1-bg-color: #363636;
  --light-bg-color: #fff;
  --light1-bg-color: rgb(248, 248, 248);
  --gray-bg-color: rgb(33, 33, 34);
  --dark-bg-color: #000;
  --dark1-bg-color: rgb(25, 25, 26);
  -accent1-color: #7F2B8E;
  --accent2-color: #3C1440;
  --accent3-color: #8D8D8D;
  --accent4-color: #331722;
  --accent5-color: #1D2C63;
  --accent6-color: #0B1D07;
  /* 0.2 - Default Font Colors */
  --accent-txt-color:#333333;
  --light-txt-color: #fff;
  --dark-text-color: #000;
  /* 0.3 - Default Font Family */
  --main-font: "Lato", sans-serif;
  --alt-font: "Playfair Display", serif;
  /* 0.4 - Color Scheme */
  --blue-bg-color: rgb(37,172,230);
  --dark-blue-bg-color: rgb(0,54,100);
  --orange-bg-color: rgb(232,75,58);
  --gradient1: linear-gradient(146deg, #9090FD 0%, #7F2B8E 100%);
  --gradient2: linear-gradient(146deg, #653469 0%, #3C1440 100%);
  --gradient3: linear-gradient(146deg, #C0C0C0 0%, #8D8D8D 100%);
  --gradient4: linear-gradient(146deg, #75203B 0%, #331722 100%);
  --gradient5: linear-gradient(146deg, #2986BF 0%, #1D2C63 100%);
  --gradient6: linear-gradient(146deg, #5F8441 0%, #0B1D07 100%);
}

header .navbar {
  background-image: var(--gradient6) !important;
}

.jumbotron.bannerV1 {
  background-image: var(--gradient6) !important;
}

.property_detail .listing-header {
  background: var(--gradient6) !important;
}

.nav-pills li.active a {
  background: var(--accent6-color) !important;
}
.nav-pills li.active a:hover, .nav-pills li.active a:focus {
  background: var(--accent6-color) !important;
}

/*********************************************/
/*                1.0 - Reset                */
/*********************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.42857143;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*********************************************/
/*             2.0 - Typography              */
/*********************************************/
html, body {
  font-size: 10px;
  font-family: var(--alt-font);
}

h1 {
  margin-bottom: 1.5rem;
  font-family: var(--alt-font);
  font-size: 3.6em;
  line-height: 3.6rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

h2 {
  margin-bottom: 1.5rem;
  font-family: var(--alt-font);
  font-size: 3em;
  line-height: 3rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

h3 {
  margin-bottom: 1.5rem;
  font-family: var(--alt-font);
  font-size: 2.4em;
  line-height: 2.4rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

h4 {
  margin-bottom: 1.5rem;
  font-family: var(--alt-font);
  font-size: 1.8em;
  line-height: 1.8rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

h5 {
  margin-bottom: 1.5rem;
  font-family: var(--alt-font);
  font-size: 1.4em;
  line-height: 1.4rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

h6 {
  margin-bottom: 1.5rem;
  font-family: var(--alt-font);
  font-size: 1.2em;
  line-height: 1.2rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

p {
  margin-bottom: 1.5rem;
  font-family: var(--main-font);
  font-size: 1.6em;
  line-height: 2.5rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0em;
}

/*********************************************/
/*              3.0 - Buttons                */
/*********************************************/
/*.btn {
	font-weight: 700;
	font-size: 12px;
	border-radius: 0;
	border: 0;
	padding: 15px 35px;
	text-transform: uppercase;
	letter-spacing: 3px;
	overflow: hidden;
	transition: all .25s ease;
}

.btn-default {
	&:hover {
		background: var(--accent-bg-color);
		color: var(--light-txt-color);
	}
	background: var(--gray-bg-color);
	color: var(--light-txt-color);
}
.btn-primary {
	background: var(--accent-bg-color);
	color: var(--light-txt-color);
	&:hover {
		background: var(--gray-bg-color);
		color: var(--light-txt-color);
	}
}


.btn {
    border-radius: 0;
    border: 0;
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: hidden;
    transition: all .25s ease;

    &__primary {
        background: var(--accent-bg-color);
        color: var(--light-txt-color);
    }

    &__inverted {
        background: var(--gray-bg-color);
        color: var(--light-txt-color);
    }
}
*/
.btn-default {
  background: #fff;
  letter-spacing: 0.3rem;
  font-size: 1.2em;
}

/*********************************************/
/*              4.0 - Header                */
/*********************************************/
header ._navbar-logo .realtor_heading_title {
  float: left;
  margin-bottom: 0;
  margin-left: 10px;
  color: #fff;
}
header ._navbar-logo .realtor_heading_title a {
  color: #fff;
}
header ._navbar-logo .realtor_heading_title .-realtor-heading-text {
  font-size: 0.8em;
  display: block;
}
header .navbar {
  background-image: var(--gradient1);
  border: 0;
}
header .navbar .navbar-header {
  float: none;
  width: 100%;
}
header .navbar .navbar-header .btn-link {
  color: #fff;
}
header .navbar-brand {
  color: #fff;
  letter-spacing: 1rem;
}
header .navbar-brand img {
  max-height: 50px;
}
header div#modalNavigation {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  bottom: 0;
  left: 0 !important;
  z-index: 1050 !important;
  outline: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
header .modal-fullscreen-menu {
  height: 100vh !important;
  background: url(img/dot-bg.png) repeat-y #666 !important;
  background-position: right center !important;
  background-size: 50% !important;
}
header .modal-fullscreen-menu .navbar-brand {
  color: #ccc;
}
header .modal-fullscreen-menu .close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  opacity: 1;
}
header .modal-fullscreen-menu .modal-dialog {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
header .modal-fullscreen-menu .menu {
  padding-top: 30px;
}
header .modal-fullscreen-menu #main_menu > li {
  display: block;
  width: 100%;
}
header .modal-fullscreen-menu #main_menu > li a {
  padding: 3vh 0;
  border: none;
  background-color: transparent;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 100%;
  font-size: 5vh;
  line-height: 5vh;
  transition: all 0.25s ease;
}
header .modal-fullscreen-menu #main_menu > li a:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  transform: scale3d(0.7, 1, 1);
}
header .modal-fullscreen-menu #main_menu > li a:hover {
  color: #000;
}
header .modal-fullscreen-menu #main_menu > li a:hover:before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
header .modal-fullscreen-menu .blurb {
  display: flex;
  color: #fff;
  align-items: center;
}
header .modal-fullscreen-menu .blurb .lead {
  max-width: 80%;
  background-color: #666;
  margin: 0 0 20px 0;
}
header .modal-fullscreen-menu .blurb .lead p {
  margin-bottom: 2vh;
  line-height: 1.5em;
  font-size: 1em;
  font-weight: 300;
}
header .nav_menu.dropdown-menu {
  max-width: 100% !important;
  width: 100% !important;
}
header .nav_menu.dropdown-menu a {
  color: #000 !important;
}
header .-default .-social-media-nav {
  float: right;
  margin-right: 20px;
}
header .-default .-social-media-nav li {
  display: inline-block;
  padding: 15px 5px;
}
header .-default .-social-media-nav li a {
  color: #fff;
  font-size: 1.5em;
  margin-right: 5px;
}
header .-var1 .header-social-media-nav {
  z-index: 99999;
  margin-top: 15px;
}
header .-var1 .header-social-media-nav span {
  display: inline;
  color: #fff;
  font-size: 1.2em;
}
header .-var1 .header-social-media-nav ul {
  padding-left: 40px;
  display: inline;
  color: #fff;
}
header .-var1 .header-social-media-nav ul li {
  display: inline;
}
header .-var1 .header-social-media-nav ul li a {
  color: #fff;
  font-size: 1.5em;
  margin-right: 5px;
}
header .-var1 .header-social-media-nav ul li a span {
  display: none;
}

@media (max-width: 768px) {
  header .-default .-social-media-nav {
    float: left;
    width: 100%;
  }
  header .-var1 .navbar-header {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/*********************************************/
/*              5.0 - Banners                */
/*********************************************/
.site-banner, #static-banner {
  min-height: 260px;
}

#static-banner.jumbotron {
  padding: 0;
}
#static-banner.jumbotron img {
  margin-top: 0;
  width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.site-banner {
  position: relative;
}

#bannerCaption {
  position: absolute;
  bottom: 20%;
  width: 100%;
}
#bannerCaption h1 {
  color: #fff !important;
  font-family: var(--alt-font);
  font-size: 5.9vh;
  margin-bottom: 4vh;
  line-height: 1.1;
  font-weight: 500;
}
#bannerCaption h3 {
  color: #fff !important;
  font-family: var(--main-font);
  font-size: 1.5em;
  letter-spacing: 0.3rem;
  line-height: 1.1;
  font-weight: 500;
}
#bannerCaption p {
  color: #fff !important;
  font-family: var(--main-font);
  font-size: 1.5em;
  letter-spacing: 0.3rem;
  line-height: 1.1;
  font-weight: 500;
}
#bannerCaption .editable-link a {
  background: 0 0;
  text-shadow: none;
  color: var(--light-txt-color);
  letter-spacing: 0.3rem;
  font-size: 1em;
}
#bannerCaption .default {
  right: 10vw;
}
#bannerCaption .widget-item {
  width: 100%;
}
#bannerCaption .-btn-left {
  text-align: right;
}
#bannerCaption .-btn-right {
  text-align: left;
}

body:not(.home) .bannerV1 {
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0;
  border-bottom: 60px solid #fff;
}
body:not(.home) .bannerV1 > img {
  margin-bottom: 0;
  margin-top: 50px;
  height: 30vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-height: 260px;
}
body:not(.home) .site-banner {
  position: relative;
}

/*--slider banner--*/
#slider-banner .carousel-inner img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

/*********************************************/
/*              6.0 - Content                */
/*********************************************/
/*-----tatemono-----*/
/*sitemap*/
.-main.site-map {
  margin: 50px 0;
}
.-main.site-map h3 {
  font-weight: 700;
}
.-main.site-map a {
  font-size: 1.6em;
}
.-main.site-map dl {
  margin: 10px 20px;
}
.-main.site-map dl dd {
  font-size: 1.6em;
}
.-main.site-map dl dd a {
  font-size: initial;
}
.-main.site-map dl dd dd {
  font-size: initial;
}
.-main.site-map dd {
  padding-left: 20px;
}

.-title-wrap .-page-title {
  font-family: var(--alt-font);
}

a {
  color: var(--dark-text-color);
}

p {
  margin-bottom: 2vh;
  line-height: 1.5em;
}

.-title-wrap {
  margin: 30px 0;
  display: table;
}

h2::after {
  display: block;
  margin: 3vh 0;
  width: 3em;
  height: 2px;
  background-color: #ccc;
  content: "";
}

.lead-form .submit-btn {
  margin: 20px 0;
}
.lead-form .submit-btn .submit {
  border: 1px solid #333;
  border-radius: 0;
  font-size: 1.6em;
}

/*--spotlight variations--*/
.simp-spotlight, .-spotlight {
  background-color: var(--primary-color);
  padding: 12vh 0;
  text-align: center;
}
.simp-spotlight .s-title, .-spotlight .s-title {
  color: var(--white);
  font-size: 26px;
  line-height: 30px;
  padding-bottom: 10px;
  font-weight: 300;
}
.simp-spotlight .s-text, .-spotlight .s-text {
  color: var(--white);
  font-size: 14px;
  font-style: italic;
  line-height: 18px;
  padding: 0 25%;
  font-weight: 300;
}

.fort-spotlight, .-spotlight1 {
  text-align: center;
  background: var(--primary-color);
  padding: 40px 0;
}
.fort-spotlight .-title, .-spotlight1 .-title {
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 30px;
  font-weight: 300;
  text-transform: uppercase;
}
.fort-spotlight strong, .-spotlight1 strong {
  font-weight: 700;
}
.fort-spotlight .-description, .-spotlight1 .-description {
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 400;
}

.render-spotlight, .-spotlight3 {
  margin-top: 70px;
}
.render-spotlight h1, .-spotlight3 h1 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.render-spotlight p, .-spotlight3 p {
  font-size: 1.4em;
  line-height: inherit;
}

.tat-spotlight, .-spotlight5 {
  margin-top: 60px;
  margin-bottom: 30px;
}
.tat-spotlight .-content, .-spotlight5 .-content {
  padding-top: 20px;
}
.tat-spotlight .-img-holder, .-spotlight5 .-img-holder {
  padding-top: 20px;
}

.prisma-spotlight, ._spotlight6 {
  border-bottom: 1px solid #181818;
  margin: 0;
}
.prisma-spotlight [data-type=container-content], ._spotlight6 [data-type=container-content] {
  padding-top: 20px;
}
.prisma-spotlight ._c-title ._title, ._spotlight6 ._c-title ._title {
  font-family: var(--alt-font) !important;
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}
.prisma-spotlight ._c-paragraph p, ._spotlight6 ._c-paragraph p {
  font-size: 1.8em;
  text-align: left;
  font-weight: 300;
}
.prisma-spotlight ._c-paragraph p strong, ._spotlight6 ._c-paragraph p strong {
  color: var(--white);
}

/*--cta-widget variations--*/
.simp-cta-widget, .-cta-widget {
  padding-top: 15vh;
  padding-bottom: 10vh;
}
.simp-cta-widget .s-menu-item, .-cta-widget .s-menu-item {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--bg-color);
  transition: all 300ms linear;
  border-radius: 3px;
  padding: 15px;
}
.simp-cta-widget .s-menu-item:hover, .-cta-widget .s-menu-item:hover {
  background-color: var(--primary-color);
  z-index: 999;
  transform: scale(1.1);
}
.simp-cta-widget .s-menu-item:hover .s-main, .-cta-widget .s-menu-item:hover .s-main {
  color: var(--white) !important;
  -webkit-animation: smallToBig 300ms ease;
  -moz-animation: smallToBig 300ms ease;
  -ms-animation: smallToBig 300ms ease;
  font-weight: 300;
}
.simp-cta-widget .s-menu-item:hover .s-icon, .-cta-widget .s-menu-item:hover .s-icon {
  color: var(--white) !important;
  font-size: 90px;
  opacity: 0.3;
  -webkit-animation: smallToBig 900ms alternate ease;
  -moz-animation: smallToBig 900ms alternate ease;
  -ms-animation: smallToBig 900ms alternate ease;
}
.simp-cta-widget .s-menu-item:hover .s-sub, .-cta-widget .s-menu-item:hover .s-sub {
  color: var(--white);
  -webkit-animation: moveFromBottom 500ms ease;
  -moz-animation: moveFromBottom 500ms ease;
  -ms-animation: moveFromBottom 500ms ease;
}
.simp-cta-widget .editable-icon, .-cta-widget .editable-icon {
  font-size: 200%;
}
.simp-cta-widget .editable-icon .s-icon, .-cta-widget .editable-icon .s-icon {
  font-size: 5em;
  color: var(--primary-color);
  opacity: 0.8;
  width: 100%;
  height: 50%;
  text-align: center;
  transition: all 400ms linear;
}
.simp-cta-widget .s-content, .-cta-widget .s-content {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 50%;
  top: 50%;
}
.simp-cta-widget .s-content .s-main, .-cta-widget .s-content .s-main {
  letter-spacing: 0px;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  transition: all 200ms linear;
}
.simp-cta-widget .s-content .s-sub, .-cta-widget .s-content .s-sub {
  text-align: center;
  font-size: 13px;
  color: #999;
  position: absolute;
  bottom: 20px;
  line-height: 16px;
  width: 100%;
  left: 0px;
  opacity: 0.8;
  transition: all 200ms linear;
  margin-bottom: 10px;
  padding: 0 15px;
  letter-spacing: 0;
}

.fort-cta-widget, .cta-widget1 {
  background: var(--primary-color);
  padding: 40px 0;
  color: var(--white);
  text-align: center;
}
.fort-cta-widget .container, .cta-widget1 .container {
  padding: 0;
}
.fort-cta-widget .container .col-sm-4, .cta-widget1 .container .col-sm-4 {
  text-align: center;
}
.fort-cta-widget .container .col-sm-4 a, .cta-widget1 .container .col-sm-4 a {
  color: var(--white);
}
.fort-cta-widget .container .col-sm-4 a .editable-icon .fa, .cta-widget1 .container .col-sm-4 a .editable-icon .fa {
  font-size: 3em;
}
.fort-cta-widget .container .col-sm-4 .-title, .cta-widget1 .container .col-sm-4 .-title {
  margin-bottom: 30px;
  margin-top: 20px;
  letter-spacing: 4px;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.1;
}
.fort-cta-widget .container .col-sm-4 .-title strong, .cta-widget1 .container .col-sm-4 .-title strong {
  color: var(--white);
  font-weight: 700;
}
.fort-cta-widget .container .col-sm-4 .-description, .cta-widget1 .container .col-sm-4 .-description {
  letter-spacing: 2px;
  line-height: 1.1;
  font-size: 14px;
}

.render-cta-widget, .-cta-widget3 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.render-cta-widget img, .-cta-widget3 img {
  width: 100%;
}
.render-cta-widget .cta-text-wrap, .-cta-widget3 .cta-text-wrap {
  background: #eee;
  padding: 30px;
}
.render-cta-widget .cta-text-wrap h1, .-cta-widget3 .cta-text-wrap h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}
.render-cta-widget .cta-text-wrap p, .-cta-widget3 .cta-text-wrap p {
  font-size: 1.8em;
  text-align: center;
  padding-bottom: 60px;
}

/*------for render-------*/
.community-blurb {
  padding-top: 100px;
  padding-bottom: 70px;
  color: var(--white);
  background-image: url("/templates/tatemonov2/img/community_blurb_bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}
.community-blurb h4 {
  font-family: "Open Sans", sans-serif;
}
.community-blurb .-title {
  padding-left: 60px;
  font-size: 55px;
  font-family: "Open Sans", sans-serif;
}
.community-blurb .-price {
  padding-left: 50px;
  font-family: "Open Sans", sans-serif;
}
.community-blurb .-description {
  padding-bottom: 60px;
}

.prisma-cta-widget, ._cta6 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.prisma-cta-widget .home-link-wrap, ._cta6 .home-link-wrap {
  margin-bottom: 15px;
}
.prisma-cta-widget .home-link-wrap .editable-icon, ._cta6 .home-link-wrap .editable-icon {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.prisma-cta-widget .home-link-wrap .editable-icon .s-icon, ._cta6 .home-link-wrap .editable-icon .s-icon {
  color: var(--primary-color);
  font-size: 46px;
  text-align: center;
}
.prisma-cta-widget .home-link-wrap .editable-link, ._cta6 .home-link-wrap .editable-link {
  display: block;
  text-align: center;
}
.prisma-cta-widget .home-link-wrap .editable-link a, ._cta6 .home-link-wrap .editable-link a {
  color: var(--primary-color);
  font-family: var(--alt-font);
  font-size: 2.2em;
  text-align: center;
}
.prisma-cta-widget .link-description, ._cta6 .link-description {
  font-size: 1.6em;
  color: var(--secondary-color);
  text-align: center;
  padding: 15px;
}
.prisma-cta-widget .link-description strong, ._cta6 .link-description strong {
  color: var(--white);
}

.ganz-cta-widget, .-cta-widget4 {
  padding-top: 70px;
  padding-bottom: 70px;
  color: #8f8f8f;
}
.ganz-cta-widget .-bxbg, .-cta-widget4 .-bxbg {
  background: var(--white);
  color: #797979;
  border: 1px solid #d9d9d9;
}
.ganz-cta-widget .-bxbg img, .-cta-widget4 .-bxbg img {
  max-width: 100%;
  height: auto;
}
.ganz-cta-widget .-txtbx, .-cta-widget4 .-txtbx {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  height: 200px;
  padding: 15px;
}
.ganz-cta-widget .-txtbx .-title, .-cta-widget4 .-txtbx .-title {
  font-size: 2.2em;
  color: var(--black);
}
.ganz-cta-widget .-txtbx .-description, .-cta-widget4 .-txtbx .-description {
  font-style: italic;
  font-size: 1.4em;
  font-family: Georgia, Times, "Times New Roman", serif;
  color: var(--black) !important;
  line-height: 2rem;
}
.ganz-cta-widget .-txtbx .-learn-more, .-cta-widget4 .-txtbx .-learn-more {
  font-size: 14px;
  font-weight: 400 !important;
  color: var(--black) !important;
}

/*********************************************/
/*           7.0 - Property Page             */
/*********************************************/
.form-control {
  margin-bottom: 20px;
  padding-left: 0;
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
}

.al-pagination li {
  font-size: 1.4em;
}

@media (max-width: 768px) {
  .properties .listing img {
    width: 100%;
    height: initial;
  }
}
@media (min-width: 768px) {
  .properties #listing_tab {
    float: right;
  }
}
.p-list .listing .thumbnails {
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
}

.properties #listing_tab {
  margin-bottom: 15px;
}
.properties #listing_tab li a {
  font-size: 1.4em;
}

#list .p-list .listing {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
#list .p-list .listing .thumbnails {
  height: initial;
}
#list .p-list .listing .address {
  margin-bottom: 30px;
  margin-top: 10px;
  padding-bottom: 0;
  font-size: 1.8em;
}
#list .p-list .listing .address::after {
  content: none;
}
#list .p-list .listing .address a {
  font-size: inherit;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--main-font);
}
#list .p-list .listing .price {
  font-size: 2.4em;
}
#list .p-list .listing .price::after {
  content: none;
}
#list .p-list .listing .info {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
#list .p-list .listing .info li {
  font-size: 1.4em;
}
#list .p-list .listing .col-sm-9.col-xs-8 a {
  font-size: inherit;
}

#grid .address {
  margin: 10px 0 0;
  line-height: 1.5em;
}
#grid .address a {
  font-size: 1.2em;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
#grid .price {
  font-size: 2.4em;
}
#grid .price::after {
  content: none;
}
#grid .listing {
  margin-bottom: 30px;
}

#table th, #table td {
  font-size: 1.4em;
}
#table .address h1 {
  font-size: 1em;
  font-family: lato;
  line-height: 1.42857143;
}
#table .address h1::after {
  content: none;
}
#table .price h2 {
  font-size: 1em;
  line-height: 1.42857143;
  font-family: lato;
}

#map th, #map td {
  font-size: 1.4em;
}
#map .address h1 {
  font-size: 1em;
  font-family: lato;
  line-height: 1.42857143;
}
#map .address h1::after {
  content: none;
}
#map .price h2 {
  font-size: 1em;
  line-height: 1.42857143;
  font-family: lato;
}

/*********************************************/
/*        8.0 - listings Details Page        */
/*********************************************/
.property_detail .breadcrumb, .property_detail .site-banner, .property_detail .-title-wrap {
  display: none;
}
.property_detail .-modules {
  padding-top: 50px;
}
.property_detail .-modules > .container {
  max-width: 100% !important;
  width: 100%;
  margin: 0 !important;
  padding: 0;
}
.property_detail .listing-header {
  overflow: hidden;
  background-image: var(--gradient1);
  background-size: 100% 60%;
  background-repeat: no-repeat;
}
.property_detail .listing-header #listings-navigation {
  display: inline-block;
  margin: 20px auto;
  width: 100%;
  border-radius: 4px;
  color: #fff;
}
.property_detail .listing-header #listings-navigation .next {
  float: right;
}
.property_detail .listing-header #listings-navigation .next a {
  float: right;
  font-size: 1.4em;
}
.property_detail .listing-header #listings-navigation .prev a {
  font-size: 1.4em;
}
.property_detail .listing-header #listings-navigation .results {
  font-size: 1.4em;
}
.property_detail .listing-header .top {
  margin-bottom: 30px;
  color: #fff;
}
.property_detail .listing-header .address {
  font-size: 3em;
}
.property_detail .listing-header .price::after {
  content: none;
  font-family: var(--alt-font);
}
.property_detail .listing-header .col-sm-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.property_detail .property-info span {
  text-transform: uppercase;
  font-weight: 700;
}
.property_detail #property-tab-content {
  padding: 0;
  background: #fff;
  border: 0;
  box-shadow: 0 0 5px #000;
  border-radius: 0;
  margin-bottom: 15px;
  background: #eee;
}
.property_detail #listingCarousel img {
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.property_detail .nav-tabs {
  background: #ddd;
}
.property_detail .nav-tabs a {
  font-size: 1.4em;
}
.property_detail .description {
  margin: 30px 0;
}
.property_detail .description .row {
  margin: 30px 0;
}
.property_detail .description .listing-links {
  padding: 60px 0;
  list-style: none;
  line-height: 2em;
}
.property_detail .description .listing-links a {
  font-size: 1.4em;
  line-height: 2em;
}
.property_detail .description h3 {
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.6em;
  line-height: 1.1;
}
.property_detail .description h3::after {
  display: inline-block;
  margin: 5px 10px;
  width: 5em;
  height: 2px;
  background-color: #999;
  content: "";
}
.property_detail .details h5 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 1.5em;
}

.businessCard ul {
  padding: 0;
  list-style: none;
}
.businessCard ul li {
  font-size: 1.4em;
}
.businessCard ul li ul li {
  font-size: inherit;
}

@media only screen and (min-width: 768px) {
  .row.is-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .row.is-flex > [class*=col-] {
    display: flex;
    flex-direction: column;
  }
}
/*********************************************/
/*                 9.0 - AFC                 */
/*********************************************/
.properties.has_afc .description > a {
  color: var(--accent-txt-color);
}
.properties.has_afc .total {
  text-align: center;
  line-height: 36px;
  margin-bottom: 0;
}
.properties.has_afc .afc-top-nav {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.properties.has_afc .afc-bottom-nav {
  float: left;
  width: 100%;
  margin-top: 30px;
}
.properties.has_afc .paging-wrapper {
  text-align: center;
}

.row.afc-listing-header-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
}

.afc-listing-tabs .tab-content {
  background: var(--light-bg-color);
  float: left;
  width: 100%;
  padding: 60px 15px;
}
.afc-listing-tabs #gmls_tab {
  background: var(--accent-bg-color);
  border-bottom: 0;
}
.afc-listing-tabs #gmls_tab > li a {
  margin: 0;
  border: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--light-txt-color) !important;
}
.afc-listing-tabs #gmls_tab > li a:hover {
  border: 0 !important;
  background: var(--gray-bg-color);
  border-radius: 0;
  color: var(--light-txt-color);
  transition: all 0.3s;
}
.afc-listing-tabs #gmls_tab > li:hover a {
  border: 0 !important;
  background: var(--gray-bg-color);
  border-radius: 0;
  color: var(--light-txt-color);
  transition: all 0.3s;
}
.afc-listing-tabs #gmls_tab > li.active {
  margin-bottom: 0;
}
.afc-listing-tabs #gmls_tab > li.active > a {
  background: var(--gray-bg-color);
  border: 0;
  border-radius: 0;
  color: var(--light-txt-color);
  margin: 0;
}
.afc-listing-tabs #gmls_tab > li.active > a:focus {
  background: var(--gray-bg-color);
  border: 0;
  border-radius: 0;
  color: var(--light-txt-color);
  margin: 0;
}
.afc-listing-tabs #gmls_tab > li.active > a:hover {
  background: var(--gray-bg-color);
  border: 0;
  border-radius: 0;
  color: var(--light-txt-color);
  margin: 0;
}

.row.afc-businesscard-wrap {
  padding: 60px 15px;
}

.office_listings .afc-businesscard-wrap li {
  list-style: none;
}

.afc-listing-header-wrap > .listing-header > .col-sm-4 {
  text-align: right;
}

.container.afc-bottom-nav .page.active a {
  background: var(--accent-bg-color);
  border-color: var(--accent-bg-color);
  color: var(--light-txt-color);
  color: var(--light-txt-color);
}
.container.afc-bottom-nav .page a {
  color: var(--accent-txt-color);
}

.container.afc-top-nav .page.active a {
  background: var(--accent-bg-color);
  border-color: var(--accent-bg-color);
  color: var(--light-txt-color);
  color: var(--light-txt-color);
}
.container.afc-top-nav .page a {
  color: var(--accent-txt-color);
}

.row.afc-navtab-wrap .detail-left h2 {
  font-family: var(--alt-font);
  color: #050505;
  font-size: 20px;
  margin-bottom: 30px;
  margin-top: 0;
}
.row.afc-navtab-wrap .detail-left .d-label > strong {
  font-size: 12px;
  font-weight: 400;
  padding: 3px 0;
  font-family: var(--main-font);
}
.row.afc-navtab-wrap .detail-left .col-xs-6 {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 0;
  font-family: var(--main-font);
}
.row.afc-navtab-wrap .detail-right h3 {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--main-font);
  margin-bottom: 20px;
}
.row.afc-navtab-wrap .detail-right p {
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 300;
}

.unavailable-photo-wrap {
  width: 100%;
  height: 260px;
  background: #eee;
  float: left;
}

.photo-align-helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*********************************************/
/*      10.0 - Featured Listing Widget       */
/*********************************************/
[data-widget-type=featured_listings] {
  width: 100%;
}
[data-widget-type=featured_listings] .provided_by {
  margin: 20px 0 !important;
  color: #000;
  text-transform: capitalize;
  font-size: 1.5em;
}
[data-widget-type=featured_listings] img {
  height: 30vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  -o-object-position: center;
     object-position: center;
}
[data-widget-type=featured_listings] .listing {
  margin-bottom: 30px;
}
[data-widget-type=featured_listings] .price {
  margin-bottom: 10px;
  color: #000;
}
[data-widget-type=featured_listings] .address {
  margin: 10px 0 0;
  padding-bottom: 0;
  color: #000;
}

#featured_listings .neighbourhood {
  display: none;
  margin-top: 20px;
  margin-bottom: 10px;
}
#featured_listings .minor-details {
  list-style: none;
  padding-left: 0;
}
#featured_listings .minor-details li {
  display: inline-block;
  padding: 5px;
  font-size: 1.4em;
  font-family: var(--main-font);
}

.featured-listing-title .sidebar-title:after {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  [data-widget-type=featured_listings] {
    width: 100%;
  }
  [data-widget-type=featured_listings] .row {
    display: flex;
    align-items: flex-end;
  }
}
/*********************************************/
/*      11.0 - Property Search Widget        */
/*********************************************/
[data-widget-type=search_board_listings] input {
  border: 1px solid #ccc;
}
[data-widget-type=search_board_listings] input::-moz-placeholder {
  padding-left: 10px;
  color: #333;
}
[data-widget-type=search_board_listings] input:-ms-input-placeholder {
  padding-left: 10px;
  color: #333;
}
[data-widget-type=search_board_listings] input::placeholder {
  padding-left: 10px;
  color: #333;
}
[data-widget-type=search_board_listings] .btn-group {
  width: 100% !important;
}
[data-widget-type=search_board_listings] .submit-btn {
  width: 100%;
  background: #333;
  color: #fff;
}
[data-widget-type=search_board_listings] .submit-btn:hover {
  background-color: #e0e0e0;
  background-position: 0 -15px;
  color: #333;
}
[data-widget-type=search_board_listings] h2.sidebar-title {
  font-family: var(--alt-font);
}
[data-widget-type=search_board_listings] h2.sidebar-title:after {
  margin-left: 0;
  margin-right: 0;
}

/*********************************************/
/*             12.0 - Blog Widget            */
/*********************************************/
.-blog-widget .container {
  padding: 0;
}
.-blog-widget .-title {
  margin-left: 15px;
}

/*********************************************/
/*         13.0 - Feature Box Widget         */
/*********************************************/
[data-widget-type=featured_box] .c-cta .editable-img img {
  width: 100%;
}
[data-widget-type=featured_box] .c-cta .txtbx h3 {
  margin-top: 20px;
  font-family: var(--alt-font);
  font-weight: 500;
}
[data-widget-type=featured_box] .c-cta .txtbx .editable-link {
  float: left;
}

.-featured-box {
  padding: 0;
}
.-featured-box .-title {
  margin-left: 15px;
}

/*********************************************/
/*        14.0 - Testimonial Widget          */
/*********************************************/
.simp-testimonial, .-testimonial {
  padding: 10vh 0;
}
.simp-testimonial h2, .-testimonial h2 {
  margin-bottom: 10px;
  line-height: 1.1;
  font-size: 3.6em;
}
.simp-testimonial .carousel, .-testimonial .carousel {
  margin-bottom: 20px;
}
.simp-testimonial .carousel .carousel-indicators, .-testimonial .carousel .carousel-indicators {
  margin-bottom: -26px;
}
.simp-testimonial .carousel .carousel-indicators li, .-testimonial .carousel .carousel-indicators li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--dark-bg-color);
  border: 1px solid var(--white);
  border-radius: 10px;
  opacity: 0.3;
}
.simp-testimonial .carousel .carousel-indicators .active, .-testimonial .carousel .carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: var(--background-color);
  opacity: 1;
}
.simp-testimonial .carousel .carousel-inner, .-testimonial .carousel .carousel-inner {
  width: 70%;
  margin: 0 auto;
}
.simp-testimonial .carousel .carousel-inner > .item img.home-testim-avatar, .-testimonial .carousel .carousel-inner > .item img.home-testim-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
}
.simp-testimonial .carousel .carousel-inner .home-testim-text, .-testimonial .carousel .carousel-inner .home-testim-text {
  font-size: 16px;
  color: #999;
  font-style: italic;
  padding-bottom: 5px;
  padding-top: 10px;
  line-height: 25px;
}
.simp-testimonial .carousel .carousel-inner .home-testim-name, .-testimonial .carousel .carousel-inner .home-testim-name {
  font-size: 16px;
  font-weight: bold;
}

/*********************************************/
/*           15.0 - About Widget             */
/*********************************************/
.simp-about-us, .-about-us {
  padding: 10vh 0;
}
.simp-about-us .col-md-6 .-title, .simp-about-us .col-md-6 h2, .-about-us .col-md-6 .-title, .-about-us .col-md-6 h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #333;
  text-align: left;
}
.simp-about-us .col-md-6 .-description, .simp-about-us .col-md-6 p, .-about-us .col-md-6 .-description, .-about-us .col-md-6 p {
  margin-bottom: 10px;
  line-height: 24px;
  text-align: left;
}
.simp-about-us .col-md-6 .-description span, .simp-about-us .col-md-6 p span, .-about-us .col-md-6 .-description span, .-about-us .col-md-6 p span {
  font-size: inherit;
}
.simp-about-us .col-md-6 .editable-link, .-about-us .col-md-6 .editable-link {
  text-align: left;
}
.simp-about-us .col-md-12, .-about-us .col-md-12 {
  padding: 0;
}

/*********************************************/
/*           15.0 - Area Search Widget             */
/*********************************************/
/*********************************************/
/*          23.0 - Contact Widget           */
/*********************************************/
[data-widget-type=contact_info] {
  padding: 5vh 0;
  text-align: center;
}
[data-widget-type=contact_info] .-social-links li {
  display: inline-block;
  padding: 5px;
  font-size: 1.6em;
}
[data-widget-type=contact_info] .-phone li {
  font-size: 1.6em;
  padding: 5px 0;
}
[data-widget-type=contact_info] .-email a {
  font-size: 1.6em;
}

[data-widget-type=contact_us] .lead-form .col-md-12 {
  padding: 0;
}
[data-widget-type=contact_us] .lead-form label {
  visibility: hidden;
}
[data-widget-type=contact_us] .lead-form .form-control, [data-widget-type=contact_us] .lead-form textarea {
  border-bottom: 2px solid #555;
}
[data-widget-type=contact_us] .lead-form .form-control::-moz-placeholder, [data-widget-type=contact_us] .lead-form textarea::-moz-placeholder {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
[data-widget-type=contact_us] .lead-form .form-control:-ms-input-placeholder, [data-widget-type=contact_us] .lead-form textarea:-ms-input-placeholder {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
[data-widget-type=contact_us] .lead-form .form-control::placeholder, [data-widget-type=contact_us] .lead-form textarea::placeholder {
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}
[data-widget-type=contact_us] .btn-default {
  font-size: 1.6em;
}

.-contact-us .container {
  padding: 0;
}
.-contact-us .title {
  margin-left: 15px;
}
.-contact-us .submit-btn .btn {
  margin-left: 15px;
}

/*********************************************/
/*          23.0 - Stat Counter Widget           */
/*********************************************/
/*********************************************/
/*               16.0 - Forms                */
/*********************************************/
.lead-form {
  float: left;
  width: 100%;
  margin-top: 30px;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.4em;
}

.Receive.Newsletter input[type=checkbox] {
  display: inline-block;
  width: auto !important;
  margin: 0;
  vertical-align: bottom;
  margin-bottom: 15px;
  box-shadow: none;
}

.Receive.Newsletter label {
  display: inline-block;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group .submit {
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  color: #575656;
  border: 2px solid #575656;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
  display: block;
  background: 0 0;
}

/*********************************************/
/*      17.0 - Home Page Slideshows          */
/*********************************************/
/*********************************************/
/*          18.0 - Homepage-Header           */
/*********************************************/
/*********************************************/
/*          19.0 - Top Navigation            */
/*********************************************/
/*********************************************/
/*       20.0 - Fo Buyers/Sellers Page       */
/*********************************************/
.buyers .-description, .for_buyers .-description {
  font-size: 1.4em;
  line-height: 1.4;
}
.buyers .-title, .for_buyers .-title {
  font-size: 5.9vh;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.1;
  font-family: var(--alt-font);
}

.sellers .-description, for_sellers .-description {
  font-size: 1.4em;
  line-height: 1.4;
}
.sellers .-title, for_sellers .-title {
  font-size: 5.9vh;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.1;
  font-family: var(--alt-font);
}

.-main [data-type=container-content] {
  display: none;
}

/*********************************************/
/*          21.0 - Blog Page             */
/*********************************************/
.blogs {
  display: flex;
  flex-wrap: wrap;
}
.blogs .item {
  display: flex;
  padding: 0 5px;
  width: 33%;
}
.blogs .item .well {
  position: relative;
  display: block;
  padding: 0;
}
.blogs .item .blog-photo {
  position: relative;
}
.blogs .item .blog-photo img {
  width: 100%;
}
.blogs article {
  padding: 1em;
}
.blogs .post_heading {
  margin: 10px 0;
  color: inherit;
  font-size: 2.4em;
  font-weight: 700;
}
.blogs .post_heading::after {
  content: none;
}
.blogs .category a {
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4em;
}

.blog .breadcrumb {
  display: none;
}
.blog .breadcrumb li a {
  font-size: 1.4em;
}
.blog .uber_share {
  position: absolute;
  bottom: 0;
  margin-left: 15px;
}
.blog .uber_share .ubr_share_bar .ubr_share_button {
  display: inline-block;
  padding-right: 10px;
}
.blog .uber_share .ubr_share_bar .ubr_share_button iframe {
  width: 60px;
  height: 20px;
}

.blog-sidebar .blog_category ul {
  padding-left: 15px;
}
.blog-sidebar .blog_category ul li {
  list-style: none;
}
.blog-sidebar .blog_category ul li a {
  font-size: 1.4em;
}
.blog-sidebar .sidebar-title {
  margin-top: 20px;
  margin-bottom: 10px;
}
.blog-sidebar .blog_rss a {
  background: #ee802f;
  margin-top: 30px;
}
.blog-sidebar hr {
  display: none;
}

/*********************************************/
/*            22.0 - Blog Article            */
/*********************************************/
.blog .top-navigation {
  text-align: right;
}

.blog .blog-detail .featuredImage {
  position: absolute;
  z-index: 0;
}
.blog .blog-detail .featuredImage img {
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog .blog-detail .wFeatured {
  margin: 30vh auto 30px;
  padding: 3vw;
  background: #f8f8f8;
}
.blog .blog-detail .meta span, .blog .blog-detail .meta a {
  font-size: 1.4em;
}

/*********************************************/
/*          23.0 - Links Page             */
/*********************************************/
.-links .-description {
  font-size: 1.4em;
}

#links .-title {
  font-weight: 700;
}
#links ul {
  padding: 0;
}
#links ul li {
  list-style: none;
  text-indent: -5px;
}
#links ul li:before {
  content: "-";
  text-indent: -5px;
}
#links ul li a {
  font-size: 1.6em;
}
#links ul li p {
  font-size: 1.4em;
}

/*********************************************/
/*          23.0 - Contact Page             */
/*********************************************/
.contact .contact-name {
  text-align: center;
}
.contact .-contact-details {
  text-align: center;
}
.contact .-contact-details ul li {
  font-size: 1.4em;
}
.contact .-contact-details .-email a {
  font-size: 1.4em;
}
.contact .-contact-details .-social-links {
  margin-top: 20px;
}
.contact .-contact-details .-social-links li {
  display: inline-block;
}
.contact .-contact-details .-social-links li a {
  font-size: 2em;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .-contact-us .lead-form .-form-wrap {
    width: 80%;
  }
}
/*********************************************/
/*               25.0 - Footer               */
/*********************************************/
footer .broker-logo img {
  max-width: 200px;
}
footer .-default {
  margin-top: 60px;
  padding: 60px 0 60px 0;
  background: #eee;
}
footer .-default .widget-item {
  margin: 0;
}
footer .-default .newsletter input[type=email] {
  font-style: italic;
  font-size: 1.4em;
}
footer .-default .newsletter input[type=button] {
  background: #333;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-size: 1.4em;
}
footer .-default .newsletter input {
  display: block;
  margin: 10px 0;
  padding: 1rem;
  width: 100%;
}
footer .-default h4 {
  text-transform: uppercase;
  margin: 10px 0;
}
footer [class*=col-md] {
  margin-top: 30px;
}
footer .-social-media-nav {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 10px;
}
footer .-social-media-nav li {
  display: inline;
  font-size: 18px;
  margin: 5px;
}
footer #footer-quick-links li a {
  font-size: 1.4em;
}
footer .header-meta a {
  font-size: 1.4em;
}
footer .header-meta a .fa {
  margin-right: 7px;
}

/*---footer var1---*/
footer .-var1 {
  margin-top: 60px;
  padding: 60px 0;
  background: #eee;
}
footer .-var1 .widget-item {
  margin: 0 !important;
}
footer .-var1 .social-media .fa {
  font-size: 22px;
  text-align: left;
  color: #333;
  width: 25px;
}
footer .-var1 .-right input {
  font-size: 1.4em;
}
footer .-var1 h4 {
  font-family: var(--main-font);
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

footer .footer-links li a {
  border-right: 1px solid #333;
  padding-right: 7px;
}

.uber-footer {
  background: #ccc;
  padding: 15px 0;
}
.uber-footer .copyright, .uber-footer .poweredby {
  padding: 0;
  margin: 0;
}
.uber-footer .copyright li, .uber-footer .poweredby li {
  display: inline;
  padding-right: 5px;
  border-right: 1px solid #fff;
  padding-left: 5px;
  font-size: 1.4em;
}
.uber-footer .copyright li:last-child, .uber-footer .poweredby li:last-child {
  border: none;
}
.uber-footer #powered_by {
  background: transparent url(img/logo-sm.png) no-repeat 0 0;
  overflow: hidden;
  width: 72px;
  height: 27px;
  display: block;
  text-indent: -5000px;
  text-align: left;
  float: right;
  margin-top: -7px;
}

/*********************************************/
/*           26.0 - Media Queries            */
/*********************************************/
/*---header---*/
@media (max-width: 768px) {
  .navbar-nav {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .modal-fullscreen-menu #main_menu a {
    padding-left: 30px !important;
  }
  .home .widget-item {
    margin: 30px 0;
  }
}
/*-------content module*/
@media screen and (min-width: 992px) {
  .home .widget-item .-module-content .photo-image, .home .widget-item .-module-content .text-content {
    display: table-cell;
    float: none;
  }
  .home .widget-item .-module-content .text-content {
    padding: 0 10%;
    vertical-align: middle;
  }
  .-about5 .photo-image, .-about5 .text-content {
    display: table-cell;
    float: none;
  }
  .-about5 .text-content {
    padding: 0 10%;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 992px) {
  .home .row [class*=col-] {
    margin: 30px 0;
  }
  .editable-link {
    float: none !important;
  }
  .modal-fullscreen-menu .blurb {
    display: none !important;
  }
}
/*---footer---*/
@media (max-width: 768px) {
  .row {
    margin: 0;
  }
  .footer .-default .-left {
    text-align: center;
  }
  .footer .-default .-right .widget-item {
    display: block;
    text-align: center;
  }
  .footer .-default .-social-media-nav {
    margin-top: 15px;
    text-align: center;
  }
  .footer .navbar-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .footer .realtor_address {
    text-align: center;
  }
  .footer .header-meta .-details {
    text-align: center;
  }
  footer .-var1 {
    text-align: center;
  }
  footer .-var1 .-right .widget-item {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uber-footer .row {
    text-align: center;
  }
  .uber-footer .row ul {
    display: inline-block;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer-clearfix {
    display: none;
  }
}
/*********************************************/
/*        27.0 - Widget-Overrides          */
/*********************************************/
.alert {
  font-size: 1.6em;
}

.widget-item {
  margin: 30px 0;
}

[data-widget-content] {
  padding: 5vh 0;
}

[data-widget-content] {
  width: 100%;
}
[data-widget-content] .row {
  margin: 0;
}

.fa-stack {
  font-size: 3em;
}

[data-widget-type=rich_html] .container {
  padding: 0;
}/*# sourceMappingURL=Rich Green-styles.css.map */